home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / gzip 1.2.2 / amiga / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1993-06-22  |  197 b   |  16 lines  |  [TEXT/MPS ]

  1. #ifndef _UTIME_H
  2. #define _UTIME_H 1
  3.  
  4. #ifndef _TIME_H
  5. #include <time.h>
  6. #endif
  7.  
  8. struct utimbuf {
  9.   time_t actime;
  10.   time_t modtime;
  11. };
  12.  
  13. extern int utime (char *path, struct utimbuf *times);
  14.  
  15. #endif
  16.